home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / Control Panel 0.9.4 / Notifier.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-17  |  395 b   |  21 lines  |  [TEXT/KAHL]

  1. /*
  2.  * Notifier.h
  3.  *
  4.  * Includes files necessary for using the StrFormat, and StrNotify routines.
  5.  */
  6.  
  7. #ifndef NOTIFIER_H
  8.  
  9. #include <stdio.h>        /* for vsprintf routine */
  10. #include <stdarg.h>        /* for va_ macros */
  11.  
  12. #include <Notification.h>
  13.  
  14. /* PROTOTYPES */
  15. void        StrFormat( Str255 theString, const char* formatString, ... );
  16. void        StrNotify( NMRec *nm, Str255 *str );
  17.  
  18. #define NOTIFIER_H
  19.  
  20. #endif
  21.